home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist / dist6.3 / ViewKit_dev.idb / usr / include / Vk / VkWidgetList.h.z / VkWidgetList.h
C/C++ Source or Header  |  1996-09-20  |  2KB  |  55 lines

  1. ////////////////////////////////////////////////////////////////////////////////
  2. ///////   Copyright 1992, Silicon Graphics, Inc.  All Rights Reserved.   ///////
  3. //                                                                            //
  4. // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;     //
  5. // the contents of this file may not be disclosed to third parties, copied    //
  6. // or duplicated in any form, in whole or in part, without the prior written  //
  7. // permission of Silicon Graphics, Inc.                                       //
  8. //                                                                            //
  9. // RESTRICTED RIGHTS LEGEND:                                                  //
  10. // Use,duplication or disclosure by the Government is subject to restrictions //
  11. // as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data     //
  12. // and Computer Software clause at DFARS 252.227-7013, and/or in similar or   //
  13. // successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -    //
  14. // rights reserved under the Copyright Laws of the United States.             //
  15. //                                                                            //
  16. ////////////////////////////////////////////////////////////////////////////////
  17. #ifndef VKWidgetList_H
  18. #define VKWidgetList_H
  19.  
  20. #include <Xm/Xm.h>
  21.  
  22. class VkComponent;
  23.  
  24. class VkWidgetList{
  25.     
  26.   public:
  27.     
  28.      VkWidgetList ( );
  29.      virtual ~VkWidgetList ( );
  30.      virtual void add(Widget);
  31.      virtual void add(VkComponent *);
  32.      virtual void remove(VkComponent *);
  33.      virtual void remove(Widget);
  34.      virtual void removeFirst();
  35.      virtual void removeLast();
  36.      virtual Boolean exists (Widget);
  37.      int size() { return _numWidgets; }
  38.      Widget   operator[]  (int index)    const;
  39.  
  40.      void clear();
  41.  
  42.   protected:
  43.  
  44.     virtual void widgetDestroyed ( Widget, XtPointer );
  45.  
  46.   private:
  47.     
  48.     static void widgetDestroyedCallback ( Widget, XtPointer, XtPointer );
  49.     
  50.     WidgetList _widgets;
  51.     int        _numWidgets;
  52. };
  53. #endif
  54.  
  55.